static void gtk_combo_box_list_popup_resize (GtkComboBox *combo_box);
/* menu */
-static void gtk_combo_box_menu_setup (GtkComboBox *combo_box,
- gboolean add_children);
+static void gtk_combo_box_menu_setup (GtkComboBox *combo_box);
static void gtk_combo_box_update_title (GtkComboBox *combo_box);
static void gtk_combo_box_menu_destroy (GtkComboBox *combo_box);
/* Create the menu mode widgets, if they don't already exist. */
if (!GTK_IS_MENU (priv->popup_widget))
- gtk_combo_box_menu_setup (combo_box, TRUE);
+ gtk_combo_box_menu_setup (combo_box);
}
gtk_widget_style_get (GTK_WIDGET (combo_box),
if (appears_as_list)
gtk_combo_box_list_setup (combo_box);
else
- gtk_combo_box_menu_setup (combo_box, TRUE);
+ gtk_combo_box_menu_setup (combo_box);
if (gtk_tree_row_reference_valid (priv->active_row))
{
}
static void
-gtk_combo_box_menu_setup (GtkComboBox *combo_box,
- gboolean add_children)
+gtk_combo_box_menu_setup (GtkComboBox *combo_box)
{
GtkComboBoxPrivate *priv = combo_box->priv;
GtkWidget *child;